home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / Appsprites / USER CODE / Simple.h < prev   
Text File  |  1993-07-11  |  601b  |  34 lines

  1. ///--------------------------------------------------------------------------------------
  2. // Simple.h
  3. //
  4. // By: Tony Myles
  5. //
  6. // Copyright © 1993 Tony Myles, All rights reserved worldwide.
  7. ///--------------------------------------------------------------------------------------
  8.  
  9.  
  10. #ifndef __SIMPLE__
  11. #define __SIMPLE__
  12.  
  13. #ifndef __WINDOWS__
  14. #include <Windows.h>
  15. #endif
  16.  
  17.  
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. void PrepareSimpleAnimation(void);
  24. void PerformSimpleAnimation(void);
  25. void EndSimpleAnimation(void);
  26. void ChangeMoveSpeed(void);
  27.  
  28.  
  29. #ifdef __cplusplus
  30. };
  31. #endif
  32.  
  33.  
  34. #endif /* __APPLICATION__ */